home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / others / intl.zip / INTLDEMO.ZIP / INTLDEMO.RC < prev    next >
Text File  |  1992-04-08  |  2KB  |  53 lines

  1. #include "windows.h"
  2. #include "intldemo.h"
  3. #include "demo.h"
  4.  
  5. worldicon ICON world.ico
  6.  
  7. IntlDemoMenu MENU
  8. BEGIN
  9.     POPUP     "&Help"
  10.     BEGIN
  11.     MENUITEM "&About...", IDM_ABOUT
  12.     MENUITEM "&Language...", IDM_LANGUAGE
  13.     END
  14. END
  15.  
  16. #include "demo.dlg"
  17.  
  18. AboutBox DIALOG 22, 17, 144, 110
  19. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  20. CAPTION "** About **"
  21. BEGIN
  22.     CTEXT "Fahller && Johansson"         -1, 0,  5, 144,  8
  23.     CTEXT "Intl demonstration"       IDS_INTLDEMO, 0, 14, 144,  8
  24.     CTEXT "Version"            IDS_VERSION, 0, 34, 144,  8
  25.     CTEXT ""                IDS_DEMOVER, 0, 43, 144,  8
  26.     CTEXT "Using INTL.DLL version" IDS_USINGVER, 0, 63, 144,  8
  27.     CTEXT ""                 IDS_DLLVER, 0, 72, 144,  8
  28.     DEFPUSHBUTTON "OK"               IDOK,56, 90,  32, 14,WS_GROUP
  29. END
  30.  
  31. STRINGTABLE
  32.     {
  33.     0, "The sLanguage variable is missing from the [INTL] section of your win.ini. This is not surprising since the Controlpanel, never addresses it, despite the fact that it's very well documented in winini2.txt. \0"
  34.     1, "INTL.DLL use this variable to use the correct words when converting dates to strings in long format. You can set it now if you want to. If the variable is not present, US-english is assumed. \0"
  35.     2, "It might be a good idea to check this variable out in your programs. Do you want to set the language now?"
  36.     IDR_DAN, "dan"
  37.     IDR_DUT, "dut"
  38.     IDR_ENG, "eng"
  39.     IDR_FCF, "fcf"
  40.     IDR_FIN, "fin"
  41.     IDR_FRN, "frn"
  42.     IDR_GER, "ger"
  43.     IDR_ICE, "ice"
  44.     IDR_ITN, "itn"
  45.     IDR_NOR, "nor"
  46.     IDR_POR, "por"
  47.     IDR_SPA, "spa"
  48.     IDR_SWE, "swe"
  49.     IDR_USA, "usa"
  50.     IDR_OTHER, ""
  51.     }
  52.         
  53.